.wx-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(28, 31, 33, 0.6);
    z-index: 900;
}

.wx-modal .modal-box {
    width: 342px;
    height: 241px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding-top: 30px;
    box-sizing: border-box;
    border-radius: 8px;
}

.wx-modal .modal-box .title {
    text-align: center;
}

.wx-modal .modal-box .wxcode {
    width: 120px;
    height: 120px;
    background-image: url("/static/img/wx-ewm.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 20px auto 0;
}

.wx-modal .modal-box .close {
    width: 24px;
    height: 24px;
    font-family: imv2;
    font-size: 24px;
    color: #B2B8BD;
    line-height: 24px;
    font-weight: 400;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}